home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Apple Guide / Authoring / Standard Includes / Content < prev    next >
Encoding:
Text File  |  1994-08-23  |  2.7 KB  |  85 lines  |  [TEXT/ttxt]

  1. ######################################################################
  2. #                                                            
  3. #        File:          Content                
  4. #                                                            
  5. #        Contains:      Guide Script commands that define the content of
  6. #                 your guide file.
  7. #
  8. ######################################################################
  9.  
  10. ######################################################################
  11. #    How To Use This File
  12. ######################################################################
  13.  
  14. # This file will contain the actual text that appears on your guide
  15. # file's panels.  (As your guide file grows, it may be helpful to break
  16. # this file into several smaller files).
  17.  
  18. # This file is part a set of files that you will compile to create your
  19. # guide file.  You will also need:
  20. #
  21. # • Build File       - a file that points to all of the related source 
  22. #                      files that define your guide file.
  23. #
  24. # • Standard Setup   - a file that contains the Guide Script commands 
  25. #                      needed to setup a guide file that follows the 
  26. #                      Apple Guide HI guidelines.  
  27. #
  28. #    To use this file:
  29. #
  30. #  1.  Edit this file to define the content of your guide file.
  31. #
  32. #  2.  The Build File already points to the Standard Setup and Content 
  33. #      files.  If you break your content into several smaller files, 
  34. #      you must add <Include> commands to also point to them.
  35. #
  36. #  3.  Use the Guide Maker Build utility to compile the Build file.
  37.  
  38.  
  39.  
  40. ######################################################################
  41. #    Access Window Content - Example Topic Area Definitions
  42. ######################################################################
  43.  
  44. <Topic Area> "Example Topic Area"
  45. <Header> "How do I..."
  46. <Topic> "define a sequence?", "How do I define a sequence?"
  47.  
  48.  
  49.  
  50. ######################################################################
  51. #    Access Window Content - Example Index Term Definitions
  52. ######################################################################
  53.  
  54. <Index> "Sequence"
  55. <Header> "How do I..."
  56. <Topic> "define a sequence?", "How do I define a sequence?"
  57.  
  58.  
  59.  
  60. ######################################################################
  61. #    Panel Content - Example Sequence & Panel Definitions
  62. ######################################################################
  63.  
  64. <Define Sequence> "How do I define a sequence?"
  65.  
  66.  
  67. <Define Panel> "Example Panel 1"
  68. This is an example of placing text on a panel.  
  69.  
  70. Because we haven't specified any overrides, this panel uses default settings for placing the text and displaying a prompt set.
  71. <End Panel>
  72.  
  73.  
  74. <Define Panel> "Example Panel 2"
  75. <Format> "Tag"
  76. Do This
  77. <Format> "Body"
  78. This panel illustrates how to use the "Tag" and "Body" text formats.  Notice how the prompt  is aligned to the Body text.
  79. <End Panel>
  80.  
  81.  
  82. <End Sequence> 
  83.  
  84.  
  85.